我需要一个外接一个额外的字我的域名我所有的网站网址之后。
比方说,我的网址http://www.example.com/somecategory/someproduct.html ,它应该是http://www.example.com/logado/somecategory/someproduct.html 。
是否有可能与.htaccess文件做呢?
如果是的话我应该怎么添加到我的.htaccess文件?
我需要一个外接一个额外的字我的域名我所有的网站网址之后。
比方说,我的网址http://www.example.com/somecategory/someproduct.html ,它应该是http://www.example.com/logado/somecategory/someproduct.html 。
是否有可能与.htaccess文件做呢?
如果是的话我应该怎么添加到我的.htaccess文件?
您可以在您使用此代码DOCUMENT_ROOT/.htaccess
文件:
RewriteEngine On
RewriteBase /
# prefix each URL by /logado/ if it is not present
RewriteCond %{THE_REQUEST} !\s/+logado/ [NC]
RewriteRule ^ logado%{REQUEST_URI} [R=302,L,NE]
# internally remove /logado/ from all URLs
RewriteRule ^logado/(.*)$ $1 [L,NC]