Amazon EC2 に Bitnami Ubuntu Wordpress インスタンスをインストールしました。
wordpress.conf
Bitnami インスタンス上のファイルは、htaccess ファイルのように機能します。
ディレクトリ構造は次のとおりです。
/opt/bitnami/apps/wordpress/htdocs/index.php
wordpress.conf
ファイルには
Alias /wordpress/ "/opt/bitnami/apps/wordpress/htdocs/"
Alias /wordpress "/opt/bitnami/apps/wordpress/htdocs"
<Directory "/opt/bitnami/apps/wordpress/htdocs">
Options Indexes MultiViews +FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
</Directory>
# Uncomment the following lines to see your application in the root
# of your URL. This is not compatible with more than one application.
#RewriteEngine On
#RewriteRule ^/$ /wordpress/ [PT]
これにより、この URL でブログが表示されます
http://ec2instance.com/wordpress/
(個々の投稿を表示する場合を含む):
http://ec2instance.com/blog/
http://ec2instance.com/blog/post-number-1
http://ec2instance.com/blog/post-number-2
等
この変更を行う方法を知っている人はいますか?